Expand description

Send Windows 10 styled notifications on Windows 7.

Note:

This crate requires a win32 event loop to be running on the thread, otherwise the notification will close immediately, it is recommended to use it with other win32 event loop crates like winit or just use your own win32 event loop.

Examples

Example 1: Simple Notification

Notification::new()
    .appname("App name")
    .summary("Critical Error")
    .body("Just kidding, this is just the notification example.")
    .icon(icon.to_vec())
    .timeout(Timeout::Default) // 5000 milliseconds
    .show().unwrap();

Example 2: Presistent Notification

Notification::new()
    .appname("App name")
    .summary("Critical Error")
    .body("Just kidding, this is just the notification example.")
    .icon(icon.to_vec())
    .timeout(Timeout::Never)
    .show().unwrap();

Structs

Describes The notification

Enums

Describes the timeout of a notification